iT邦幫忙

2021 iThome 鐵人賽

DAY 15
0
Modern Web

YDKJS 一邊讀 You Don't Know JS Yet 一邊卡關一邊弄懂的日子 ԅ(≖‿≖ԅ)系列 第 15

Day15 - this&Object Prototypes Ch3 Objects - Iteration 開頭

  • 分享至 

  • xImage
  •  
  • 搭配 in 的 for 迴圈會搜尋物件中所有 property 為 enumerable 者
  • 而使用變數搭配 for 迴圈會搜尋物件中所有 indices
var myArr = ['a','b','c']; 
myArr['food'] = '燃麵' 

console.log(myArr) // ["a", "b", "c"]

for (var i=0; i<myArr.length;i++) {
	console.log( myArr[i] );
} // 'a','b','c'

for (item in myArr) {
	console.log( item );
} // "0","1","2","food"

只看一點點,以上理解有所出入,都在麻煩協助提點了,感謝 ԅ(≖‿≖ԅ)


上一篇
Day14 - this&Object Prototypes Ch3 Objects - Contents - Existence - Enumeration 作者建議
下一篇
Day16 - this&Object Prototypes Ch3 Objects - Iteration 開頭
系列文
YDKJS 一邊讀 You Don't Know JS Yet 一邊卡關一邊弄懂的日子 ԅ(≖‿≖ԅ)30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言